home *** CD-ROM | disk | FTP | other *** search
/ Delphi Magazine Collection 2001 / Delphi Magazine Collection 20001 (2001).iso / DISKS / Issue52 / HTML / Code / Router / Router.dpr < prev    next >
Encoding:
Text File  |  1999-10-23  |  304 b   |  19 lines

  1. program Router;
  2.  
  3. {$APPTYPE CONSOLE}
  4.  
  5. uses
  6.   ActiveX,
  7.   HTTPApp,
  8.   CGIApp,
  9.   SML_Handler_TLB in '..\AppServer\SML_Handler_TLB.pas',
  10.   Main in 'Main.pas' {wmMain: TWebModule};
  11.  
  12. {$R *.RES}
  13.  
  14. begin
  15.   Application.Initialize;
  16.   Application.CreateForm(TwmMain, wmMain);
  17.   Application.Run;
  18. end.
  19.